| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .yt-chat {
- display: flex;
- flex-direction: column;
- height: 100%;
- background: var(--bg-page);
- position: relative;
- &__iframe {
- flex: 1;
- width: 100%;
- border: none;
- min-height: 0;
- background: var(--bg-page);
- }
- &__offline {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- gap: 8px;
- padding: 24px 16px;
- text-align: center;
- }
- &__offline-title {
- font-size: 0.95rem;
- font-weight: 600;
- color: var(--text-primary);
- margin: 0;
- }
- &__offline-desc {
- font-size: 0.8125rem;
- color: var(--text-muted);
- margin: 0;
- line-height: 1.5;
- }
- }
|